home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS02.ADF / Make / cl next >
Text File  |  1989-05-30  |  371b  |  14 lines

  1.  
  2. .Key afile,opt1,opt2,opt3
  3. ;           Compile a C program                       Version 3.00
  4. ;           Works with Lattice version 3.02 and above
  5. copy <afile$t1>.c to ram:
  6. :c/lc1 <opt1> <opt2> <opt3> -i:include/ -i:include/lattice/ ram:<afile$t1>
  7. if not exists "ram:<afile$t1>.q"
  8.    quit 20
  9.    endif
  10. :c/lc2 ram:<afile$t1>
  11. copy ram:<afile>.o <afile>.o
  12. rm ram:<afile>#?
  13.  
  14.